home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 2: CDPD 1 / Almathera Ten on Ten - Disc 2: CDPD 1.iso / pd / 076-100 / 092 / bawk / example2 < prev    next >
Text File  |  1995-03-13  |  144b  |  10 lines

  1. BEGIN
  2. {
  3.     strcpy(RS,".");  # set record seperator to a period
  4. }
  5. {
  6.     if ( match( $1, @^[a-z]@ ) )
  7.         *$1 = toupper( *$1 );
  8.     printf( "%s\n", $0 );
  9. }
  10.